24313b01243a685080cc8dd889ce1083ff5b5b9f,src/java/soc/server/SOCServerRobotPinger.java,SOCServerRobotPinger,run,#,70

Before Change


            {
                for (StringConnection robotConnection : robotConnections)
                {
                    D.ebugPrintln("(*)(*)(*)(*) PINGING " + robotConnection.getData());
                    robotConnection.put(ping.toCmd());
                }
            }

After Change


            {
                for (StringConnection robotConnection : robotConnections)
                {
                    if (D.ebugIsEnabled())
                        D.ebugPrintln("(*)(*)(*)(*) PINGING " + robotConnection.getData());
                    robotConnection.put(ping.toCmd());
                }
            }